home *** CD-ROM | disk | FTP | other *** search
/ MacGames Sampler / PHT MacGames Bundle.iso / MacSource Folder / Samples from the CD / Editors / emacs / Emacs-1.14b1-sources / sources / misc-headers / utime.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-15  |  480 b   |  22 lines  |  [TEXT/EMAC]

  1. /*
  2.  * utime.h
  3.  *
  4.  * This file is part of a Macintosh port of GNU Emacs.
  5.  * Copyright (C) 1993, 1994 Marc Parmet.  All rights reserved.
  6.  *
  7.  * GNU Emacs is distributed in the hope that it will be useful,
  8.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.  * GNU General Public License for more details.
  11.  */
  12.  
  13. #ifndef __UTIME__
  14. #define __UTIME__
  15.  
  16. struct utimbuf {
  17.     long actime;
  18.     long modtime;
  19. };
  20.  
  21. #endif
  22.